Handle inline PEM keys with removed line endings#1804
Draft
Copilot wants to merge 8 commits into
Draft
Conversation
Copilot
AI
changed the title
Support inline PEM private keys where newlines were replaced by spaces (CI/CD injection)
Support inline PEM private keys (newlines replaced by spaces by CI/CD injection)
Jun 13, 2026
Copilot created this pull request from a session on behalf of
Rob-Hague
June 13, 2026 15:37
View session
…M encapsulation boundary
Copilot
AI
changed the title
Support inline PEM private keys (newlines replaced by spaces by CI/CD injection)
Permit \r, \n, \t and space after PEM encapsulation boundary in PrivateKeyPattern
Jun 13, 2026
Copilot
AI
changed the title
Permit \r, \n, \t and space after PEM encapsulation boundary in PrivateKeyPattern
Relax PEM private key regex to accept unchunked base64 payloads
Jun 23, 2026
Copilot
AI
changed the title
Relax PEM private key regex to accept unchunked base64 payloads
Handle inline PEM keys with removed line endings
Jun 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The inline PEM test was normalizing line endings with an incomplete pattern and only covering space-separated output. This change corrects the line-ending handling in the test and teaches
PrivateKeyFileto accept PEM content whose line breaks have been removed entirely.Test coverage
string.Emptyinstead of a space to exercise the stricter inline PEM case.PEM parsing
BEGIN ... ENDwith contiguous base64 payload.